<html>
<head>
<script>
<!--
function check()
{
	if(frm.userid.value=="")
	{
		alert("ID Էϼ");
		frm.userid.focus();
		return false;
	}
	
	if(frm.userpw.value=="")
	{
		alert("PW Էϼ");
		frm.userpw.focus();
		return false;
	}
	frm.submit();
}
//-->
</script>
</head>
<body bgcolor=black>
<font color=green size=1>
<center>
<br><br>
<br><br>
<br><br>
<font id="main" color=silver size=6 face="Impact">Security Olympiad</font><br>
<br><br>
<br><br>
<form name=frm action=login.asp method=post>
<table border=0 align=center style=color:white>

<atr><td colspan=3>
<tr>
<td>[<input type=text name=userid style=width:150;border:0;background:black;color:green maxlength=20 onfocus=this.style.background='silver' onblur=this.style.background='black'>]</td>

<tr>
<td colspan=2><br></td>
</tr>

<tr>
<td>[<input type=password name=userpw style=width:150;border:0;background:black;color:green maxlength=20 onfocus=this.style.background='silver' onblur=this.style.background='black'>]</td>
<td><input type=button value='Login' onClick=check() style=width:100;border:0;background:black;color:yellow></td>
</tr>

</table>
</form>
</center>

</body>
</html>